home *** CD-ROM | disk | FTP | other *** search
/ You're the Director / You're The Director.iso / mac / MACF / MGER.DIR / 00075_Script_75 < prev    next >
Text File  |  1995-10-10  |  424b  |  22 lines

  1. on enterFrame
  2.   set the keyDownScript to "if the key = RETURN then RunOff"
  3.   
  4.   if length(field "name")>15 then
  5.     set gCurrentSprite to 3
  6.     RunOff
  7.   end if
  8.   if length(field "movie")>15 then
  9.     set gCurrentSprite to 4
  10.     RunOff
  11.   end if
  12. end
  13.  
  14. on mouseDown
  15.   global gCurrentSprite
  16.   if rollOver(3) then
  17.     set gCurrentSprite = 3
  18.   else if rollOver(4) then
  19.     set gCurrentSprite = 4
  20.   end if  
  21. end
  22.